home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Business Assistant
/
Business Assistant.iso
/
acctg
/
itrak10
/
newstart.bat
< prev
next >
Wrap
DOS Batch File
|
1992-03-15
|
709b
|
34 lines
: * This batch will delete All data and index files
: * supplied with the program for testing purposes.
: ***************************************************
@echo off
if not exist *.dat goto msg1
del *.dat
:dk
if not exist *.k* goto msg2
del *.k*
goto done
:msg1
echo No Data Files Found.........
goto dk
:msg2
echo No Index Files Found........
goto nf
:done
echo:
echo All data and index files deleted.
echo When you start up Invoice Tracker again
echo the files will be re-built, and ready for
echo new information.
echo:
pause
goto end
:nf
echo:
echo No files found....They will be re-built
echo when you Run Invoice Tracker again.
echo:
pause
goto end
:end